home *** CD-ROM | disk | FTP | other *** search
/ T&A 2 the Maxx 3 / T and A 2 The Maxx Number 3.iso / viewers / unixview / xgiftar.z / xgiftar / cmuwmraster.h < prev    next >
C/C++ Source or Header  |  1991-05-20  |  314b  |  18 lines

  1. /* cmuwmraster.h
  2.  *
  3.  * this describes the header for ITC (CMU WM) raster files. It is
  4.  * essentially a byte reversed Sun raster, 1 plane, no encoding.
  5.  */
  6.  
  7. #include "copyright.h"
  8.  
  9. struct cmuwm_header
  10. {
  11.     byte magic[4];
  12.     byte width[4];
  13.     byte height[4];
  14.     byte depth[2];
  15. };
  16.  
  17. #define CMUWM_MAGIC 0xf10040bb
  18.